home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / CommentConverter10 ト.sit / CommentConverter10 ƒ / READ ME FIRST!!! < prev   
Text File  |  1993-12-20  |  3KB  |  56 lines

  1. CommentConverter 1.0.0
  2. ======================
  3.  
  4. This is a little D&D that converts C-style comments to C++-style comments and vice 
  5. versa. Your files should remain untouched, and new files with the same names but with the 
  6. extension ". b" or ".d" (for files ".c"), ".g" or ".i" (for files ".h") will be created. To convert to
  7. C-style simply hold down the Option Key while dropping the files.
  8.  
  9. DRAWBACKS:
  10. I did not bother to cater for comments in parantheses, so 
  11.   printf ("/*"); /* This will lead to errors!!!*/
  12. will be converted to:
  13.   printf ("//"); /* This will lead to errors!!!
  14. Nested Comments are not treated separately, thus 
  15.   /* This comment will //look like this after conversion*/
  16. will result in:
  17.   /* This comment will /*look like this after conversion*/*/.
  18. To avoid this if converting to C-style comments first convert to C++-style comments
  19. yielding //...//, which will be correctly translated to /* // */.
  20.  
  21. VERSION HISTORY:
  22. 1.0.0 (December 20, 1993) -=- initial release.
  23.  
  24. COPYRIGHT NOTICES:
  25. CommentConverter 1.0.0 is copyright ゥ1993 Andreas Amoroso.  It is distributed in the hope 
  26. that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of 
  27. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 
  28.  
  29. DISCLAIMER:
  30. YOU EXPRESSLY ACKNOWLEDGE AND AGREE THAT USE OF THIS PROGRAM IS AT YOUR SOLE RISK.
  31. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  THE 
  32. COPYRIGHT HOLDER PROVIDES THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER 
  33. EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY 
  34. AND FITNESS FOR A PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF 
  35. THE PROGRAM IS WITH YOU.  SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL 
  36. NECESSARY SERVICING, REPAIR OR CORRECTION.
  37. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL THE COPYRIGHT 
  38. HOLDER BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL 
  39. DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO 
  40. LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES 
  41. OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS).
  42.  
  43.  
  44. Andreas Amoroso,
  45. 20.12.93
  46.  
  47. P.S.: PLEASE FEEL FREE TO SEND ME A POSTCARD OF YOUR HOMETOWN IF YOU LIKE COMMENTCONVERTER!
  48.        (YOU WOULD BETTER DO SO, OR YOU MIGHT GET A PIMPLE ON YOUR TONGUE!!!)
  49.        My address:
  50.        Universit閣 Kaiserslautern
  51.        Fachbereich Elektrotechnik
  52.        z. H.: Herrn A□□□ Amoroso
  53.        Erwin-Schr單inger-Straァe
  54.        67653 Kaiserslautern
  55.        GERMANY
  56.